<rss version="2.0" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
    <channel>
        <title>DNN Modules for Non-Profit Food Banks</title> 
        <link>http://www.dnnfoodbank.com</link> 
        <description>RSS feeds for DNN Modules for Non-Profit Food Banks</description> 
        <ttl>60</ttl> <item>
    <comments>http://www.dnnfoodbank.com/More-/Support/ID/15/Using-DnnSoftware-Platform-to-manage-a-food-pantry#Comments</comments> 
    <slash:comments>0</slash:comments> 
    <wfw:commentRss>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=89&amp;ModuleID=415&amp;ArticleID=15</wfw:commentRss> 
    <trackback:ping>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=15&amp;PortalID=0&amp;TabID=89</trackback:ping> 
    <title>Using DnnSoftware Platform to manage a food pantry </title> 
    <link>http://www.dnnfoodbank.com/More-/Support/ID/15/Using-DnnSoftware-Platform-to-manage-a-food-pantry</link> 
    <description>Using Dnn.Platform to manage a food pantry can offer several benefits, including:

Increased Efficiency:

Streamlined Operations:&amp;nbsp;Dnn.Platform provides tools for online intake and registration,&amp;nbsp;volunteer management,&amp;nbsp;inventory control,&amp;nbsp;and donation tracking.&amp;nbsp;This can automate many manual tasks,&amp;nbsp;freeing up valuable time for staff and volunteers to focus on serving clients.


 Improved communication:&amp;nbsp;The platform facilitates communication with clients and volunteers through announcements,&amp;nbsp;email blasts,&amp;nbsp;and online forums.&amp;nbsp;This can help keep everyone informed about pantry operations,&amp;nbsp;volunteer opportunities,&amp;nbsp;and upcoming events.
 Data-driven decision-making:&amp;nbsp;Dnn.Platform provides data and analytics that can help food pantries track their progress,&amp;nbsp;identify trends,&amp;nbsp;and make informed decisions about resource allocation,&amp;nbsp;program development,&amp;nbsp;and outreach strategies.


Enhanced Access and Services:


 Online application and registration:&amp;nbsp;Clients can apply for assistance and register for services online,&amp;nbsp;making it easier and more convenient for them to access the food pantry.
 24/7 access to information:&amp;nbsp;The platform can provide clients with access to pantry information,&amp;nbsp;resources,&amp;nbsp;and updates anytime,&amp;nbsp;anywhere.
 Multilingual support:&amp;nbsp;Dnn.Platform can be configured to support multiple languages,&amp;nbsp;making it more accessible to a broader range of clients.


Greater Transparency and Accountability:


 Donor management:&amp;nbsp;Dnn.Platform provides tools for tracking donations,&amp;nbsp;managing donor relationships,&amp;nbsp;and issuing tax receipts.&amp;nbsp;This can help build trust and transparency with donors.
 Financial reporting:&amp;nbsp;The platform can generate reports on income,&amp;nbsp;expenses,&amp;nbsp;and inventory levels,&amp;nbsp;which can be used for financial planning and reporting to stakeholders.
 Volunteer tracking:&amp;nbsp;Dnn.Platform can track volunteer hours and activities,&amp;nbsp;which can help demonstrate the value of volunteer contributions and recognize volunteers for their service.


Additional Benefits:


 Reduced administrative costs:&amp;nbsp;By automating many tasks and streamlining operations,&amp;nbsp;Dnn.Platform can help food pantries reduce their administrative costs.
 Improved collaboration:&amp;nbsp;The platform can facilitate collaboration between staff,&amp;nbsp;volunteers,&amp;nbsp;and donors,&amp;nbsp;which can lead to more effective service delivery.
 Increased sustainability:&amp;nbsp;By improving efficiency and transparency,&amp;nbsp;Dnn.Platform can help food pantries become more sustainable organizations.


Overall, Dnn.Platform can be a valuable tool for food pantries looking to improve efficiency, enhance access and services, and promote transparency and accountability. It can help food pantries better serve their communities and make a more significant impact on the lives of those in need
</description> 
    <dc:creator>Joseph Aucoin</dc:creator> 
    <pubDate>Sun, 08 Dec 2024 16:43:00 GMT</pubDate> 
    <guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:15</guid> 
    
</item>
<item>
    <comments>http://www.dnnfoodbank.com/More-/Support/ID/12/Reporting-by-Age-Group#Comments</comments> 
    <slash:comments>0</slash:comments> 
    <wfw:commentRss>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=89&amp;ModuleID=415&amp;ArticleID=12</wfw:commentRss> 
    <trackback:ping>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=12&amp;PortalID=0&amp;TabID=89</trackback:ping> 
    <title>Reporting by Age Group</title> 
    <link>http://www.dnnfoodbank.com/More-/Support/ID/12/Reporting-by-Age-Group</link> 
    <description>Stored procedure added to report on a client family age demographics.
CREATE PROCEDURE [dbo].[GIBS_FBClients_AgeGroupReport]

	@ClientID int

AS 
BEGIN    

SET NOCOUNT ON;
		
    CREATE TABLE #Temp    
    ( DOB   Date  NULL );     
     INSERT INTO #Temp (DOB)

	SELECT  GIBS_FBClientsAFM.ClAddFamMemDOB  AS DOB                     
	FROM         GIBS_FBClients 
	INNER JOIN  GIBS_FBClientsAddFamMem AS GIBS_FBClientsAFM ON GIBS_FBClients.ClientID = GIBS_FBClientsAFM.ClientID
	WHERE     GIBS_FBClients.ClientID = @ClientID
		
	
UNION ALL

	SELECT GIBS_FBClients.ClientDOB AS DOB                                          
	FROM  GIBS_FBClients 
	WHERE     GIBS_FBClients.ClientID = @ClientID


-- SELECT THE REPORT FROM TEMP TABLE
	SELECT                              
	count( dbo.fn_GIBS_FBClients_GetAgeGroup(DOB,GetDate())) As AgeGroupCount 
	 , dbo.fn_GIBS_FBClients_GetAgeGroup(DOB,GetDate()) As AgeGroup                
	FROM         #Temp 
	GROUP BY dbo.fn_GIBS_FBClients_GetAgeGroup(DOB,GetDate())

 DROP TABLE #Temp


END
</description> 
    <dc:creator>Joseph Aucoin</dc:creator> 
    <pubDate>Thu, 05 Sep 2013 11:57:00 GMT</pubDate> 
    <guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:12</guid> 
    
</item>
<item>
    <comments>http://www.dnnfoodbank.com/More-/Support/ID/11/Case-Workers-Dropdown#Comments</comments> 
    <slash:comments>0</slash:comments> 
    <wfw:commentRss>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=89&amp;ModuleID=415&amp;ArticleID=11</wfw:commentRss> 
    <trackback:ping>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=11&amp;PortalID=0&amp;TabID=89</trackback:ping> 
    <title>Case Workers Dropdown</title> 
    <link>http://www.dnnfoodbank.com/More-/Support/ID/11/Case-Workers-Dropdown</link> 
    <description>Cleaned up the dropdown for selecting a case worker. List now&amp;nbsp;displayed by last name comma first name.
Version Release 01.00.10</description> 
    <dc:creator>Joseph Aucoin</dc:creator> 
    <pubDate>Thu, 01 Aug 2013 11:24:00 GMT</pubDate> 
    <guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:11</guid> 
    
</item>
<item>
    <comments>http://www.dnnfoodbank.com/More-/Support/ID/10/Deleting-Additional-Family-Members#Comments</comments> 
    <slash:comments>0</slash:comments> 
    <wfw:commentRss>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=89&amp;ModuleID=415&amp;ArticleID=10</wfw:commentRss> 
    <trackback:ping>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=10&amp;PortalID=0&amp;TabID=89</trackback:ping> 
    <title>Deleting Additional Family Members</title> 
    <link>http://www.dnnfoodbank.com/More-/Support/ID/10/Deleting-Additional-Family-Members</link> 
    <description>Added the ability to delete additional family members.
Version Release 01.00.09</description> 
    <dc:creator>Joseph Aucoin</dc:creator> 
    <pubDate>Mon, 29 Jul 2013 11:21:00 GMT</pubDate> 
    <guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:10</guid> 
    
</item>
<item>
    <comments>http://www.dnnfoodbank.com/More-/Support/ID/9/More-Client-Search-Modifications#Comments</comments> 
    <slash:comments>0</slash:comments> 
    <wfw:commentRss>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=89&amp;ModuleID=415&amp;ArticleID=9</wfw:commentRss> 
    <trackback:ping>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=9&amp;PortalID=0&amp;TabID=89</trackback:ping> 
    <title>More Client Search Modifications</title> 
    <link>http://www.dnnfoodbank.com/More-/Support/ID/9/More-Client-Search-Modifications</link> 
    <description>Added the ability to search for client records by searching on the clients additional family members.</description> 
    <dc:creator>Joseph Aucoin</dc:creator> 
    <pubDate>Sat, 13 Jul 2013 11:08:00 GMT</pubDate> 
    <guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:9</guid> 
    
</item>
<item>
    <comments>http://www.dnnfoodbank.com/More-/Support/ID/8/Client-Search-Improvements-106#Comments</comments> 
    <slash:comments>0</slash:comments> 
    <wfw:commentRss>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=89&amp;ModuleID=415&amp;ArticleID=8</wfw:commentRss> 
    <trackback:ping>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=8&amp;PortalID=0&amp;TabID=89</trackback:ping> 
    <title>Client Search Improvements 1.06</title> 
    <link>http://www.dnnfoodbank.com/More-/Support/ID/8/Client-Search-Improvements-106</link> 
    <description>Per Food Bank request, the client search page has been modified&amp;nbsp;to&amp;nbsp;enable searching by the&amp;nbsp;ClientID field.</description> 
    <dc:creator>Joseph Aucoin</dc:creator> 
    <pubDate>Wed, 19 Jun 2013 11:04:00 GMT</pubDate> 
    <guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:8</guid> 
    
</item>
<item>
    <comments>http://www.dnnfoodbank.com/More-/Support/ID/7/Food-Bank-Client-Manager-105-Released#Comments</comments> 
    <slash:comments>0</slash:comments> 
    <wfw:commentRss>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=89&amp;ModuleID=415&amp;ArticleID=7</wfw:commentRss> 
    <trackback:ping>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=7&amp;PortalID=0&amp;TabID=89</trackback:ping> 
    <title>Food Bank Client Manager 1.05 Released</title> 
    <link>http://www.dnnfoodbank.com/More-/Support/ID/7/Food-Bank-Client-Manager-105-Released</link> 
    <description>Additional Fields Added:

    ClientNote - to support import of existing client notes
    ClientUnit - to support import of existing client second address field
    ClientTown - to support report grouping of City/Town and/or Town/Village fields

Most food banks service a limited geographic area usually consisting of cities with town suburbs within the city. Reporting is done by grouping the data to the city level. Client city is now dropdown field with the town dropdown being populated by the selection of the city field. These cities and towns are managed by the DotNetNuke Lists Manager. A custom town can be entered in a textbox control if the city dropdown of &quot;Other&quot; is selected.</description> 
    <dc:creator>Joseph Aucoin</dc:creator> 
    <pubDate>Wed, 06 Mar 2013 13:35:00 GMT</pubDate> 
    <guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:7</guid> 
    
</item>
<item>
    <comments>http://www.dnnfoodbank.com/More-/Support/ID/6/Food-Bank-Client-Manager-102-Released#Comments</comments> 
    <slash:comments>0</slash:comments> 
    <wfw:commentRss>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=89&amp;ModuleID=415&amp;ArticleID=6</wfw:commentRss> 
    <trackback:ping>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=6&amp;PortalID=0&amp;TabID=89</trackback:ping> 
    <title>Food Bank Client Manager 1.02 Released</title> 
    <link>http://www.dnnfoodbank.com/More-/Support/ID/6/Food-Bank-Client-Manager-102-Released</link> 
    <description>Food Bank Client Manager version&amp;nbsp;1.02 released.
Client Fields Added:

    Client Middle Initial
    Client Suffix
    Latitude/Longitude to support Google mapping
    DOB Verified Checkbox
    Client Ethnicity
    Client True/False Questions (Employed, Fuel Assistance, WIC,&amp;nbsp;Veteran, etc.) Supported via DNN Lists so unlimited questions can be added.

Additional Family Member Fields Added

    Middle Initial
    DOB Verifiied Checkbox
    Ethnicity

&amp;nbsp;
&amp;nbsp;</description> 
    <dc:creator>Joseph Aucoin</dc:creator> 
    <pubDate>Mon, 18 Feb 2013 14:55:00 GMT</pubDate> 
    <guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:6</guid> 
    
</item>
<item>
    <comments>http://www.dnnfoodbank.com/More-/Support/ID/4/Food-Bank-Inventory-Management-Module-Released-for-DNN#Comments</comments> 
    <slash:comments>0</slash:comments> 
    <wfw:commentRss>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=89&amp;ModuleID=415&amp;ArticleID=4</wfw:commentRss> 
    <trackback:ping>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=4&amp;PortalID=0&amp;TabID=89</trackback:ping> 
    <title>Food Bank Inventory Management Module Released for DNN</title> 
    <link>http://www.dnnfoodbank.com/More-/Support/ID/4/Food-Bank-Inventory-Management-Module-Released-for-DNN</link> 
    <description>The&amp;nbsp;Inventory Management Module&amp;nbsp;is designed specifically for Food Banks. Deliveries at Food Banks will often have no pricing on the invoices making reporting on the value of the food distributed impossible.
Current Release 1.0.0
Inventory Management Module Features:

    Manage receiving invoices - gridView of invoices showing Invoice Date, Supplier Name, Invoice Number and Created By user
    When entering invoices line items users can select products from a DropDown list which will populate the # Per Case and Price fields
    Inventory Reporting
    Tracking of createdByUserID, createdOnDate, lastModifiedOnDate, lastModifiedByUserID

The module demonstration is only available to registered users.
Please register with our site to sample the DNN Food Bank Inventory Management Module.
REGISTER NOW</description> 
    <dc:creator>Joseph Aucoin</dc:creator> 
    <pubDate>Wed, 30 Jan 2013 14:02:00 GMT</pubDate> 
    <guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:4</guid> 
    
</item>
<item>
    <comments>http://www.dnnfoodbank.com/More-/Support/ID/3/Donation-Tracker-Search-Bug--Fixed#Comments</comments> 
    <slash:comments>1</slash:comments> 
    <wfw:commentRss>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=89&amp;ModuleID=415&amp;ArticleID=3</wfw:commentRss> 
    <trackback:ping>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=3&amp;PortalID=0&amp;TabID=89</trackback:ping> 
    <title>Donation Tracker Search Bug - Fixed</title> 
    <link>http://www.dnnfoodbank.com/More-/Support/ID/3/Donation-Tracker-Search-Bug--Fixed</link> 
    <description>It appears the text search on Donation Tracker is not working . . . I&#39;ll put out a fix by the weekend.</description> 
    <dc:creator>Joseph Aucoin</dc:creator> 
    <pubDate>Tue, 29 Jan 2013 18:15:00 GMT</pubDate> 
    <guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:3</guid> 
    
</item>
<item>
    <comments>http://www.dnnfoodbank.com/More-/Support/ID/2/Addition-of-More-Client-Data-For-Quick-View#Comments</comments> 
    <slash:comments>1</slash:comments> 
    <wfw:commentRss>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=89&amp;ModuleID=415&amp;ArticleID=2</wfw:commentRss> 
    <trackback:ping>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2&amp;PortalID=0&amp;TabID=89</trackback:ping> 
    <title>Addition of More Client Data For Quick View</title> 
    <link>http://www.dnnfoodbank.com/More-/Support/ID/2/Addition-of-More-Client-Data-For-Quick-View</link> 
    <description>Added . . .
Last Visit: 1/28/2013 - Displays last visit date
Total in Household: 2 - Gives you total # of people in household
+/- Inc &amp;amp; Exp ($40.00) - Summery of Income &amp;amp; Expense data</description> 
    <dc:creator>Joseph Aucoin</dc:creator> 
    <pubDate>Tue, 29 Jan 2013 12:46:00 GMT</pubDate> 
    <guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:2</guid> 
    
</item>
<item>
    <comments>http://www.dnnfoodbank.com/More-/Support/ID/1/Support-and-Feature-Requests#Comments</comments> 
    <slash:comments>0</slash:comments> 
    <wfw:commentRss>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=89&amp;ModuleID=415&amp;ArticleID=1</wfw:commentRss> 
    <trackback:ping>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=1&amp;PortalID=0&amp;TabID=89</trackback:ping> 
    <title>Support and Feature Requests</title> 
    <link>http://www.dnnfoodbank.com/More-/Support/ID/1/Support-and-Feature-Requests</link> 
    <description>Registered users can use this page to create support and feature enhancement requests for any of our modules. Please provide an in depth description of the issue orenhancement request.</description> 
    <dc:creator>Joseph Aucoin</dc:creator> 
    <pubDate>Mon, 28 Jan 2013 10:21:00 GMT</pubDate> 
    <guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:1</guid> 
    
</item>
<item>
    <comments>http://www.dnnfoodbank.com/More-/Support/ID/13/DNN-CMS-Community-Platform#Comments</comments> 
    <slash:comments>0</slash:comments> 
    <wfw:commentRss>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=89&amp;ModuleID=415&amp;ArticleID=13</wfw:commentRss> 
    <trackback:ping>http://www.dnnfoodbank.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=13&amp;PortalID=0&amp;TabID=89</trackback:ping> 
    <title>DNN CMS Community Platform</title> 
    <link>http://www.dnnfoodbank.com/More-/Support/ID/13/DNN-CMS-Community-Platform</link> 
    <description>DNN&amp;reg; ( formerly DotNetNuke&amp;reg; ) is the leading open source web content management platform (CMS) in the Microsoft ecosystem. The product is used to build professional looking and easy-to-use commercial websites, social intranets, community portals, or partner extranets. Containing dynamic content of all types, DNN sites are easy to deploy and update. The&amp;nbsp;DNN&amp;nbsp;Platform has been downloaded more than&amp;nbsp;8 million times and powers more than 750,000 websites globally. A community of more than 1 million members forms a powerful support network. 

Thousands of commercial extensions, apps and skins are available at the  DNN Store that make extending a&amp;nbsp;DNN site fast and affordable.

Free open source extensions are also available from the  DNN Extensions Forge.

In addition to robust content management, the free, open source DNN Platform includes the following built-in features:

    A rich-text editor 
    File management 
    Cloud-ready with MS Azure compatibility 
    Mobile API and basic mobile device detection 
    Core written in C# 
    Single installation, multiple portals 
    Social API (in DNN 6.2 and above) 
    Modern client-side Web tools like CSS 3, HTML 5 and JQuery 
    Bulk email 
    Robust security 
    Administration features like: security roles, protected content and site log 
</description> 
    <dc:creator>Joseph Aucoin</dc:creator> 
    <pubDate>Sun, 13 Jan 2013 13:16:00 GMT</pubDate> 
    <guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:13</guid> 
    
</item>

    </channel>
</rss>